/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(130deg, #000000, #190828, #000000);
}

/* Navbar section */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: linear-gradient(90deg, #000000, #000000);
    color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #8b5cf6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b5cf6;
}

.nav-buttons button {
    padding: 8px 18px;
    margin-left: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.login-btn {
    background-color: #333;
    color: white;
}

.login-btn:hover {
    background-color: #555;
}

.get-started-btn {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
    color: white;
}

.get-started-btn:hover {
    opacity: 0.9;
}

/* Mobile menu toggle default (hidden on desktop) */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}


/* Announcement Section */

.announcement-section {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.announcement {
    background: linear-gradient(90deg, #19062a, #39125e);
    border: 1px solid #6d2aab;
    padding: 15px 20px;
    border-radius: 10px;
    color: #f0f0f0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement .icon {
    font-size: 1.3rem;
}

.hero-section {
    text-align: center;
    color: #b97fd1;
    margin: 60px 20px;
}

.hero-section h1 {
    font-family: "Roboto", sans-serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #9dacba;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons button {
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.trial-btn {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
    color: white;
}

.trial-btn:hover {
    opacity: 0.9;
}

.demo-btn {
    background-color: #222;
    color: white;
    border: 1px solid #555;
}

.demo-btn:hover {
    opacity: 0.9;
}




.news-section {
    text-align: center;
    padding: 80px 40px;
    color: white;
}

.news-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.news-section .subtitle {
    color: #9dacba;
    margin-bottom: 50px;
    font-size: 1rem;
}

.news-cards {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.news-card {
    background-color: #111118;
    border-radius: 15px;
    border: 1px solid #53247e;
    overflow: hidden;
    width: 360px;
    height: 420px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card img {
    width: 100%;
    height: 186px;
    object-fit: cover;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 25px rgba(155, 89, 182, 0.4);
}

.card-content {
    padding: 18px;
    text-align: left;
    margin: 17px;
}

.tags {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #bbb;
}

.tag {
    background: rgba(155, 89, 182, 0.2);
    color: #c39bd3;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.date {
    font-size: 0.85rem;
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.news-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.4;
}






.gallery-section {
    text-align: center;
    padding: 60px 237px;
    color: white;
  }
  
  .gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .gallery-section .subtitle {
    color: #a0a0c0;
    margin-bottom: 30px;
  }
  
  .slider-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
  }
  
  .slide {
    min-width: calc(33.33% - 14px); /* 3 slides with gap */
    background: #1e1e2f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    text-align: center;
  }
  
  .slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #6a5acd;
  }
  
  .slide p {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #ddd;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    padding: 8px 12px;
    transition: background 0.3s;
    z-index: 5;
  }
  
  .prev:hover, .next:hover {
    background: rgba(155, 89, 182, 0.8);
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
  





  .benefits-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(90deg, #180826, #0c0413);
    color: white;
  }
  
  .benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .benefits-section .subtitle {
    color: #a0a0c0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
  }
  
  .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #53247e;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(155, 89, 182, 0.35), 0 0 0 1px rgba(155, 89, 182, 0.55) inset;
    border-color: rgba(155, 89, 182, 0.55);
  }
  
  .benefit-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
  }
  
  .benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .benefit-card p {
    font-size: 0.9rem;
    color: #cfcfe3;
  }
  





  /* WHY US SECTION */
.why-us {
  max-width: 1100px;
  margin: 80px auto;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.why-us .subtitle {
  color: #a0a0c0;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.feature-card {
  background: #1f1b38;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
}

.feature-icon {
  font-size: 1.8rem;
  background: #3a276e;
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  display: inline-block;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: bold;
}

.feature-card p {
  color: #bbb;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.feature-card .tag {
  display: inline-block;
  background: #362545;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #fff;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stats h3 {
  font-size: 1.8rem;
  color: #a97fff;
  margin-bottom: 5px;
}

.stats p {
  font-size: 1rem;
  color: #bbb;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  transition: box-shadow 0.3s ease; /* smooth shadow transition */
  border: 1px solid #53247e; 
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(169, 127, 255, 0.4); /* purple glow */
}







/* Roadmap Section */
.roadmap {
  text-align: center;
  padding: 80px 10%;
  color: white;
}

.roadmap h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.roadmap .subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* Roadmap Card */
.roadmap-card {
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}

.roadmap-card:hover {
  box-shadow: 0 6px 20px rgba(169, 127, 255, 0.4);
}

.roadmap-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.roadmap-card h3 {
  margin: 8px 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.roadmap-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.tag.blue { background: #3d5afe; color: white; }
.tag.green { background: #00c853; color: white; }
.tag.purple { background: #9c27b0; color: white; }
.tag.yellow { background: #fbc02d; color: black; }
.tag.black { background: black; color: white; }
.tag.cyan { background: #26c6da; color: black; }

.progress-bar {
  background: #3a2c5f;
  border-radius: 8px;
  overflow: hidden;
  height: 6px;
  margin-bottom: 15px;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #a77dff, #7c4dff);
}

.eta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #ccc;
}

.priority {
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.75rem;
}

.priority.high { background: #512da8; color: white; }
.priority.medium { background: #0288d1; color: white; }
.priority.low { background: #8bc34a; color: black; }







/* Subscribe Section */
.subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.subscribe-box {
  background: #111;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 7px rgba(169, 127, 255, 0.2);
}

.subscribe-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.subscribe-box p {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 20px;
}

.subscribe-box form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.subscribe-box input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #1c1c1c;
  color: #fff;
  flex: 1;
  min-width: 200px;
}

.subscribe-box button {
  background: #8a2be2;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.subscribe-box button:hover {
  background: #6a1bb0;
}







/* Collaborations Section */
.partners {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(38deg, #190828, #09030e);
  color: white;
}

.partners-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #b993d6, #8ca6db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partners-header p {
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 40px;
}

.partner-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.partner-stats h3 {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-stats p {
  font-size: 0.9rem;
  color: #bbb;
}

/* Partner Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.partner-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.15);
  transition: box-shadow 0.3s ease;
}

.partner-card:hover {
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.3);
}

.partner-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d1c4e9;
}

.partner-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.partner-item span {
  font-weight: 500;
  color: #fff;
}

.partner-item small {
  display: block;
  font-size: 0.8rem;
  color: #aaa;
}

.status {
  background: #1e1e1e;
  color: #9c27b0;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid #9c27b0;
}





/* Partnership Benefits */
.benefits {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.benefits-card {
  background: #eef3ff;
  border-radius: 15px;
  padding: 40px 30px;
  max-width: 1100px;
  width: 100%;
}

.benefits-card h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.benefits-card p {
  color: #2563eb;
  margin-bottom: 40px;
  font-size: 1rem;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.benefit-item {
  max-width: 280px;
  text-align: center;
}

.icon-box {
  width: 55px;
  height: 55px;
  background: #dbeafe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 15px;
  color: #2563eb;
}

.benefit-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #111827;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #1e40af;
}


/* Footer */

.footer {
  background: #050208;
  padding: 50px 80px 20px;
  color: #ccc;
  margin-top: 50px;
  border-top: 1px solid #452e5b;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  max-width: 300px;
}

.footer-left h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.logo-circle {
  background: #8b5cf6;
  color: #fff;
  border-radius: 50%;
  padding: 5px 10px;
  font-weight: 700;
  margin-right: 5px;
}

.footer-left p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #aaa;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #777;
}

.footer-socials a {
  color: #ccc;
  margin-left: 15px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #8b5cf6;
}



.spline{
  position: absolute;
  top: -10px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: scale(1.5);
  z-index: -1;
}

/* Tablet breakpoint */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 20px;
  }
  .hero-section h1 {
    font-size: 42px;
  }
  .hero-section p {
    font-size: 1.05rem;
  }
  .gallery-section {
    padding: 50px 40px;
  }
  .slider { gap: 16px; }
  .slide { min-width: calc(50% - 8px); }
  .partner-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .footer {
    padding: 40px 30px 20px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #53247e;
    border-radius: 10px;
    padding: 12px 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-buttons { display: none; }

  .announcement-section {
    margin: 24px 16px;
  }
  .hero-section {
    margin: 40px 16px;
  }
  .hero-section h1 { font-size: 34px; }
  .hero-section p { font-size: 1rem; }
  .hero-buttons button {
    margin: 6px 6px;
    padding: 10px 18px;
  }
  .news-section { padding: 60px 16px; }
  .news-cards { gap: 20px; }
  .news-card { width: 100%; max-width: 380px; height: auto; }
  .news-card img { height: 200px; }

  .gallery-section { padding: 40px 16px; }
  .slider { gap: 12px; }
  .slide { min-width: 100%; }
  .slide img { height: 220px; }

  .benefits-section { padding: 60px 16px; }
  .why-us { margin: 60px auto; padding: 16px; }
  .stats { gap: 30px; }

  .subscribe { padding: 60px 16px; }
  .subscribe-box { padding: 28px 20px; }
  .subscribe-box form { flex-direction: column; }
  .subscribe-box button { width: 100%; }

  .partners { padding: 60px 16px; }
  .partner-stats { gap: 24px; }

  .benefits { padding: 40px 16px; }
  .benefits-card { padding: 28px 18px; }
  .benefits-grid { gap: 30px; }

  .footer { padding: 32px 16px 16px; }
  .footer-container { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 20px; }
  .footer-bottom { gap: 12px; justify-content: center; }

  .spline { transform: scale(1.1); }
}

/* Small phones */
@media (max-width: 600px) {
  .hero-section h1 { font-size: 28px; }
  .slide img { height: 200px; }
}